home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / graphics / tms_rom2.zip / TIMESROM.POV < prev    next >
Text File  |  1994-03-28  |  3KB  |  108 lines

  1. #include "colors.inc"
  2. #include "shapes.inc"
  3. #include "textures.inc"
  4.  
  5. /* Camera*/
  6. camera {
  7.    location <0.0, 0.0, 0.0>
  8.    translate <   -0.7500000,   -4.000000,    2.0000>
  9.    direction <0,   1.43, 0>
  10.    up <0, 0, 1>
  11.    sky  <0, 0, 1>
  12.    right <1.33, 0, 0>
  13.    look_at <1.2, .5, 1>
  14. }
  15.  
  16. /* Light1 */
  17. light_source { 
  18.         <1.5000, -2.0000, 2.0000> color red 1.00 green 1.00 blue 1.00
  19.         spotlight
  20.         point_at <0.5000, 0.5000, 0.0000>
  21.         tightness 0
  22.         radius 40
  23.         falloff 80.0
  24.     }
  25.  
  26. /* Light 2*/
  27. light_source {
  28.         <-5000, -8.0000, 7.0000> color red 1.00 green 1.00 blue 1.00
  29.         spotlight
  30.         point_at <0.5000, 0.5000, 0.0000>
  31.         tightness 0
  32.         radius 40
  33.         falloff 80.0
  34.     }
  35.  
  36.  
  37. object { //Sky
  38.    sphere { <0.0, -1000.0, 0.0> 9999000 }
  39.    texture {
  40.     pigment {
  41.         gradient <0, 0, 1 >
  42.         colour_map {
  43.             [0.0 0.15 colour OrangeRed colour MidnightBlue]
  44.             [0.15 1.01 colour MidnightBlue colour Black]
  45.             }
  46.         }
  47.     finish {
  48.         ambient 0.7
  49.         diffuse 0.0
  50.         }
  51.     scale <10, 10, 10000000>
  52.     }
  53. }
  54.  
  55. object {
  56.     plane { <0, 0, -1> 0 translate <0, 0, 200>}
  57.     texture {
  58.         turbulence 0.0
  59.         pigment {
  60.             bozo
  61.             colour_map {
  62.             [0.0 0.1   colour red 0.9 green 0.9 blue 0.9
  63.             colour red 0.8 green 0.8 blue 0.8 filter 0.5 ]
  64.             [0.1 0.5   colour red 0.8 green 0.8 blue 0.8 filter 0.5
  65.             colour red 1.0 green 1.0 blue 1.0 filter 1.0 ]
  66.             [0.5 1 colour red 1.0 green 1.0 blue 1.0 filter 1.0
  67.             colour red 1.0 green 1.0 blue 1.0 filter 1.0]
  68.             }
  69.         }
  70.         scale <600, 200, 200>
  71.     }
  72. }
  73.  
  74.  
  75. object {
  76.     plane {<0, 0, 1> 0
  77.         texture {
  78.             White_Marble
  79.             finish {
  80.                 ambient 0.3
  81.                 //reflection 0.4
  82.             }
  83.             scale <6, 1, 1> rotate <0, 0, 30>
  84.         }
  85.     }
  86. }
  87.  
  88.  
  89. #declare TIMES_ROMAN = texture {
  90.     pigment { color Red }
  91.     finish { ambient 0.3 diffuse 0.65 phong 0.5 phong_size 40.0}
  92. }
  93.  
  94. object {
  95.     union { // a
  96.         #include "tms_pcnt.inc  "
  97.         texture { TIMES_ROMAN }
  98.         rotate <-90, 0, 0> scale <6, 6, 0.25> translate <-0.5, -0.5, 0.25>
  99.         }
  100.     }
  101.  
  102. object {
  103.     union { // a
  104.         #include "tms_doll.inc  "
  105.         texture { White_Wood scale <.1 .8 .1> rotate < 3 3 3 >}
  106.         rotate <-90, 0, 0> scale <2.5, 2.5, 0.2> rotate <75, -10, -20> translate <0.3, 1.25, 0.2>
  107.         }
  108.     }